runtime.mspan.next (field)

17 uses

	runtime (current package)
		mheap.go#L382: 	next *mspan     // next span in list, or nil if none
		mheap.go#L1556: 	span.next = nil
		mheap.go#L1591: 		list.first = span.next
		mheap.go#L1593: 		span.prev.next = span.next
		mheap.go#L1598: 		span.next.prev = span.prev
		mheap.go#L1600: 	span.next = nil
		mheap.go#L1610: 	if span.next != nil || span.prev != nil || span.list != nil {
		mheap.go#L1611: 		println("runtime: failed mSpanList.insert", span, span.next, span.prev, span.list)
		mheap.go#L1614: 	span.next = list.first
		mheap.go#L1628: 	if span.next != nil || span.prev != nil || span.list != nil {
		mheap.go#L1629: 		println("runtime: failed mSpanList.insertBack", span, span.next, span.prev, span.list)
		mheap.go#L1635: 		list.last.next = span
		mheap.go#L1652: 	for s := other.first; s != nil; s = s.next {
		mheap.go#L1661: 		other.last.next = list.first
		stack.go#L1222: 			next := s.next
		stack.go#L1238: 			next := s.next